home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Harmless / Eyecon / Source / Eyecon_main.m < prev    next >
Encoding:
Text File  |  1994-04-01  |  520 b   |  30 lines

  1. /*
  2.  *     Generated by the NeXT Interface Builder.
  3.  */
  4.  
  5. #import <stdlib.h>
  6. #import "EyeApp.h"
  7. #import "EyeView.h"
  8.  
  9. void startTimer(DPSTimedEntry teNumber, double now, id self)
  10. {
  11.     id icon = [self appIcon];
  12.     
  13.     if (icon != nil) [self initializeIcon:icon];
  14. }
  15.  
  16. void notifyTimer(DPSTimedEntry teNumber, double now, id self)
  17. {
  18.     [self drawBalls];
  19. }
  20.  
  21.  
  22. void main(int argc, char *argv[])
  23. {
  24.     NXApp = [EyeApp new];
  25.     [NXApp loadNibSection:"Eyecon.nib" owner:NXApp];
  26.     [NXApp run];
  27.     [NXApp free];
  28.     exit(0);
  29. }
  30.